home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / fndation.arc / DOS.BAT < prev    next >
DOS Batch File  |  1985-12-01  |  2KB  |  45 lines

  1. echo off
  2. cls
  3. c:
  4. cd\dos
  5. echo      You are about to install the Disk Operating System on a floppy 
  6. echo diskette in drive A:
  7. echo                    THE ADVANTAGE OF DOING THIS:
  8. echo      This makes the floppy diskette have the power to start up the 
  9. echo computer all by itself, before any hard disk gets a chance to do so.
  10. echo The only time you MIGHT conceivably want to do this would be if you
  11. echo have received a software demo diskette that specifies the need to 
  12. echo "Install DOS" on the demo diskette. I'm sure there are other reasons.
  13. echo                        THE DISADVANTAGES:
  14. echo      If you're using a hard-disk-equipped machine, you won't normally be 
  15. echo needing to do this procedure, because you'll normally be starting 
  16. echo up the computer using the hard disk most of the time.
  17. echo      As a matter of fact, you will nearly always only need diskettes for 
  18. echo backup purposes, and the following procedure is a waste of time and
  19. echo possibly space.
  20. echo      Again, this is normally NOT NECESSARY for most diskettes, and it hogs
  21. echo too much storage space. 
  22. echo   
  23. echo                Do you want to continue?
  24. query
  25. if not errorlevel 1 goto no
  26. cls
  27. echo Please make SURE you have the proper diskette in drive A:!!!
  28. pause
  29. cls
  30. echo . . . Presently transferring the first two invisible system files . . .
  31. echo (These files are called IBMDOS.COM and IBMBIOS.COM).
  32. echo    
  33. sys A:
  34. echo . . . Copying the third file over (called COMMAND.COM) . . .
  35. copy c:\command.com A:
  36. echo   
  37. echo      Okay! You can now start up a computer by using the diskette in 
  38. echo drive A:. You can test this by leaving the disk drive door closed with the same 
  39. echo diskette contained within, and then re-starting the computer, but first . . .
  40. pause
  41. :no
  42. cls
  43. type menu.txt
  44.  
  45.